home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / misc / math / MathFX_src.lha / fxschr.c < prev    next >
C/C++ Source or Header  |  1995-12-20  |  214b  |  15 lines

  1. #include "mathfx.h"
  2.  
  3. void fxschr(def,scale)
  4. float def,scale;
  5. {
  6.     float defalt, ht;
  7.  
  8.     if (def != 0.0) 
  9.        schr(def,scale*def);
  10.     else {
  11.        gchr(&defalt,&ht);
  12.        schr(defalt,scale*defalt);
  13.     }
  14. }
  15.